Our goal here is to examine the relationships between pleiotropy v separate QTL analyses and mediation analyses. We study with these methods the chromosome 2 hotspot in the Keller et al 2018 pancreatic islet expression data.

library(tidyverse)
## ── Attaching packages ─────────────────────────────────────────── tidyverse 1.2.1 ──
## ✔ ggplot2 3.1.0     ✔ purrr   0.3.0
## ✔ tibble  2.0.1     ✔ dplyr   0.7.8
## ✔ tidyr   0.8.2     ✔ stringr 1.3.1
## ✔ readr   1.3.1     ✔ forcats 0.3.0
## ── Conflicts ────────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()

First, we load the Keller 2018 data.

load("../data-to-ignore/Attie_DO378_eQTL_viewer_v1.Rdata")
readRDS("../data/hotspot_expr_tib2_keller_chr2.rds") -> hot139
readRDS("../data/hotspot-chr2-8missing-genes.rds") -> hot8
readRDS("../data/local_expr13.rds") -> local13
cbind(hot8, as.matrix(hot139[, -140])) -> hot

We now have a 378 by 13 matrix of local expression values, ie, with the updated collection of local genes.

We next need the scan1 outputs for these traits.

library(qtl2)
## 
## Attaching package: 'qtl2'
## The following object is masked from 'package:readr':
## 
##     read_csv
# define addcovar 
addcovar <- dataset.islet.rnaseq$covar
# scan1 calls
if(!file.exists("../data/s1_local.rds")){
  scan1(genoprobs = genoprobs, pheno = local13, kinship = K, addcovar = addcovar, reml = TRUE, cores = 6
        ) -> s1_local
  saveRDS(s1_local, file = "../data/s1_local.rds")
}

if(!file.exists("../data/s1_hotspot.rds")){
  scan1(genoprobs = genoprobs, pheno = hot, kinship = K, addcovar = addcovar, reml = TRUE, cores = 6
        ) -> s1_hotspot
  saveRDS(s1_hotspot, "../data/s1_hotspot.rds")
}
# what is the ENSEMBL id for Hnf4a?
hnf4a_id <- "ENSMUSG00000017950"

We still need to define the driver for input to intermediate::mediation_scan.

Load scan1() outputs for hotspot (ie, trans) traits

We saved the scan1 outputs, because they take some time to re-run.

s1_local <- readRDS("../data/s1_local.rds")
s1_hotspot <- readRDS("../data/s1_hotspot.rds")

Find QTL peaks

We now search the outputs of scan1 to identify peaks:

# for local genes, we above defined those of interest to have 
# peak > 40, so we use 40 here as threshold
find_peaks(s1_local, map = map, threshold = 40) -> local_peaks
find_peaks(s1_hotspot, map = map) -> hotspot_peaks
map_chr2_tib <- tibble(pos = map$`2`, index = 1:length(map$`2`))
hnf4a_peak_position <- local_peaks %>%
  filter(lodcolumn == hnf4a_id) %>% 
  left_join(map_chr2_tib, by = "pos") %>%
  select(index) %>% 
  unlist() %>%
  as.numeric()

Let’s subset the driver and the covariates:

addcovar2 <- addcovar[rownames(addcovar) %in% rownames(hot), ]
rna_annot <- dataset.islet.rnaseq$annots %>%
  as_tibble() %>%
  select(gene_id, symbol)

Set up mediation analyses for all 13 local genes

First, we want to set up the dri21 driver object. To do that, we need to know the peak positions for each local trait.

library(intermediate) # from github, fboehm/intermediate
## 
## Attaching package: 'intermediate'
## The following object is masked from 'package:qtl2':
## 
##     get_common_ids
indices <- local_peaks %>%
  left_join(map_chr2_tib) %>%
  select(index) %>%
  unlist()
## Joining, by = "pos"
dri21 <- genoprobs$`2`[rownames(genoprobs$`2`) %in% rownames(hot), , indices]
cbind(dimnames(dri21)[[3]], 
indices)
##                       indices
## index1  "2_164605360" "3807" 
## index2  "2_163582672" "3794" 
## index3  "2_165722231" "3857" 
## index4  "2_164022416" "3795" 
## index5  "2_167274124" "3927" 
## index6  "2_164027702" "3796" 
## index7  "2_163520139" "3793" 
## index8  "2_166754477" "3915" 
## index9  "2_165574583" "3840" 
## index10 "2_164636687" "3810" 
## index11 "2_165053217" "3814" 
## index12 "2_164027702" "3796" 
## index13 "2_167274124" "3927"
med21 <- local13[ , colnames(local13) %in% local_peaks$lodcolumn]
med21 %>% colnames()
##  [1] "ENSMUSG00000017002" "ENSMUSG00000017707" "ENSMUSG00000017897"
##  [4] "ENSMUSG00000017950" "ENSMUSG00000017969" "ENSMUSG00000018209"
##  [7] "ENSMUSG00000035268" "ENSMUSG00000039621" "ENSMUSG00000039725"
## [10] "ENSMUSG00000039873" "ENSMUSG00000053166" "ENSMUSG00000054582"
## [13] "ENSMUSG00000086098"
out21 <- list()
foo <- list()
for (j in 1:13){
  for (i in 1:147){
   foo[[i]]<- fit1_med(driver = dri21[ , , j],
         target = hot[ , i], 
         mediator = med21[ , j], 
         addcovar = addcovar2)
  }
  out21[[j]] <- foo
}
med_out <- out21 %>%
  purrr::map(bind_rows)
## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes

## Warning in bind_rows_(x, .id): Vectorizing 'logLik' elements may not
## preserve their attributes
m2_out <- med_out %>%
  bind_rows() %>%
  as_tibble() %>%
  mutate(local_gene_id = rep(colnames(med21), each = 147), nonlocal_gene_id = rep(colnames(hot), times = 13)) %>%
  mutate(lod_without_med = (ll_d - ll_1) / log(10), lod_with_med = (ll_dm - ll_1m) / log(10), lod_diff = lod_without_med - lod_with_med, lod_diff_proportion = lod_diff / lod_without_med)

Tabulating the pleiotropy v separate QTL LRT statistics

Our goal is to analyze the results of pvl scan results files from CHTC.

library(qtl2chtc)
dir(path = "../results/pvl-run2001/", pattern = "*.txt") -> fns
  lrt <- numeric()
  i <- 1
  for (fn in fns){
    read.table(file.path("../results/pvl-run2001/", fn)) -> scan_out
    qtl2pleio::calc_lrt_tib(scan_out) -> lrt[i]
    i <- i + 1
  }
tibble::tibble(fns, lrt) -> r2001

Let’s parse the file names in r2001 into meaningful fields, like gene names.

library(stringr)
splitted <- r2001$fns %>% 
  str_split(pattern = "_") 

my_split <- function(string_vec, pattern = ".txt"){
  foo <- str_split(string_vec, pattern)
  sapply(FUN = function(x)x[1], X = foo)
}
res2001 <- sapply(FUN = function(x)x[1:4], X = splitted) %>% 
  t() %>%
  as_tibble() %>%
  rename(run_num = V1, job_num = V2, local_gene_id = V3) %>%
  mutate(nonlocal_gene_id = my_split(V4)) %>%
  select(- V4) %>%
  mutate(lrt = r2001$lrt) %>%
  arrange(desc(lrt)) %>%
  left_join(rna_annot, by = c("nonlocal_gene_id" = "gene_id")) %>%
  rename(nonlocal_gene_symbol = symbol) %>%
  left_join(rna_annot, by = c("local_gene_id" = "gene_id")) %>%
  rename(local_gene_symbol = symbol)
## Warning: `as_tibble.matrix()` requires a matrix with column names or a `.name_repair` argument. Using compatibility `.name_repair`.
## This warning is displayed once per session.
hist(res2001$lrt)

sum(res2001$lrt > 4)
## [1] 18

Join pleiotropy v separate QTL LRT tibble with LOD drops tibble

library(plotly)
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
myt2 <- m2_out %>% 
  left_join(res2001) 
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
pp <- myt2 %>%
  ggplot() + aes(x = lrt, y = lod_diff, colour = nonlocal_gene_symbol) + geom_point() + theme(legend.position="none")
ggplotly(pp, tooltip = c("colour", "x", "y")) 
pp <- myt2 %>%
  ggplot() + aes(x = lrt, y = lod_diff_proportion, colour = nonlocal_gene_symbol) + geom_point() + theme(legend.position="none")
ggplotly(pp, tooltip = c("colour", "x", "y")) 

Get LRTs for pleiotropy v separate QTL for all 13 local genes

run 2002: tabulating lrt statistics

dir(path = "../results/pvl-run2002/", pattern = "*.txt") -> fns
lrt <- numeric()
i <- 1
for (fn in fns){
    read.table(file.path("../results/pvl-run2002/", fn)) -> scan_out
    qtl2pleio::calc_lrt_tib(scan_out) -> lrt[i]
    i <- i + 1
}
tibble::tibble(fns, lrt) -> r2002
res2002 <- r2002 %>%
  select(fns) %>%
  unlist() %>%
  str_split_fixed(pattern = "_", n = 4) %>%
  as_tibble() %>%
  rename(run = V1, job = V2, local_gene_id = V3, nonlocal_gene_id = V4) %>%
  mutate(job = as.numeric(job)) %>%
  mutate(nonlocal_gene_id = str_remove(nonlocal_gene_id, pattern = ".txt")) %>%
  mutate(lrt = r2002$lrt) %>%
  arrange(desc(lrt)) %>%
  left_join(rna_annot, by = c("nonlocal_gene_id" = "gene_id")) %>%
  rename(nonlocal_gene_symbol = symbol) %>%
  left_join(rna_annot, by = c("local_gene_id" = "gene_id")) %>%
  rename(local_gene_symbol = symbol)

Get test statistics for run 2003

dir(path = "../results/pvl-run2003/", pattern = "*.txt") -> fns
lrt <- numeric()
i <- 1
for (fn in fns){
    read.table(file.path("../results/pvl-run2003/", fn)) -> scan_out
    qtl2pleio::calc_lrt_tib(scan_out) -> lrt[i]
    i <- i + 1
}
tibble::tibble(fns, lrt) -> r2003
res2003 <- r2003 %>%
  select(fns) %>%
  unlist() %>%
  str_split_fixed(pattern = "_", n = 4) %>%
  as_tibble() %>%
  rename(run = V1, job = V2, local_gene_id = V3, nonlocal_gene_id = V4) %>%
  mutate(job = as.numeric(job)) %>%
  mutate(nonlocal_gene_id = str_remove(nonlocal_gene_id, pattern = ".txt")) %>%
  mutate(lrt = r2003$lrt) %>%
  arrange(desc(lrt)) %>%
  left_join(rna_annot, by = c("nonlocal_gene_id" = "gene_id")) %>%
  rename(nonlocal_gene_symbol = symbol) %>%
  left_join(rna_annot, by = c("local_gene_id" = "gene_id")) %>%
  rename(local_gene_symbol = symbol)

Get test statistics for run 2004

dir(path = "../results/pvl-run2004/", pattern = "*.txt") -> fns
lrt <- numeric()
i <- 1
for (fn in fns){
    read.table(file.path("../results/pvl-run2004/", fn)) -> scan_out
    qtl2pleio::calc_lrt_tib(scan_out) -> lrt[i]
    i <- i + 1
}
tibble::tibble(fns, lrt) -> r2004
res2004 <- r2004 %>%
  select(fns) %>%
  unlist() %>%
  str_split_fixed(pattern = "_", n = 4) %>%
  as_tibble() %>%
  rename(run = V1, job = V2, local_gene_id = V3, nonlocal_gene_id = V4) %>%
  mutate(job = as.numeric(job)) %>%
  mutate(nonlocal_gene_id = str_remove(nonlocal_gene_id, pattern = ".txt")) %>%
  mutate(lrt = r2004$lrt) %>%
  arrange(desc(lrt)) %>%
  left_join(rna_annot, by = c("nonlocal_gene_id" = "gene_id")) %>%
  rename(nonlocal_gene_symbol = symbol) %>%
  left_join(rna_annot, by = c("local_gene_id" = "gene_id")) %>%
  rename(local_gene_symbol = symbol)

We then combine res2001, res2002, res2003, and res2004.

res <- bind_rows(res2001, res2002, res2003, res2004)
fn <- "../data/res-tibble-lrt-med.rds"
if (!(file.exists(fn))){
  saveRDS(res, fn)
}
readRDS(fn) -> res

Work with all 13 * 147 = 1911 test statistics & mediation analyses

myt3 <- m2_out %>% 
  left_join(res) 
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
pp <- myt3 %>%
  ggplot() + aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0), colour = local_gene_symbol == "Hnf4a") + geom_point(size = 1 / 10) + broman::karl_theme() +  theme(legend.position="none") + ylab("LOD difference proportion") + xlab("Pleiotropy vs. separate QTL test statistic") + ylim(0, 1)
ggplotly(pp, tooltip = c("colour", "x", "y")) 
ggsave("lod-diff-prop-v-lrt.jpg", height = 7, width = 7, units = "in")
ggsave("lod-diff-prop-v-lrt.eps", height = 7, width = 7, units = "in")
ggsave("lod-diff-prop-v-lrt.svg", height = 7, width = 7, units = "in")

Repeat above plot, but with only 147 pairs involving Hnf4a

pp <- myt3 %>%
  filter(local_gene_symbol == "Hnf4a") %>%
  ggplot() + aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0), colour = local_gene_symbol == "Hnf4a") + geom_point(size = 1 / 4) + broman::karl_theme() + theme(legend.position="none") + ylab("LOD difference proportion") + xlab("Pleiotropy vs. separate QTL test statistic") + ylim(0, 1)
ggplotly(pp, tooltip = c("colour", "x", "y")) 
ggsave("Hnf4a-lod-diff-prop-v-lrt.jpg", height = 7, width = 7, units = "in")
ggsave("Hnf4a-lod-diff-prop-v-lrt.eps", height = 7, width = 7, units = "in")
ggsave("Hnf4a-lod-diff-prop-v-lrt.svg", height = 7, width = 7, units = "in")
foo <- m2_out %>% 
  left_join(res) %>%
  filter(!(local_gene_symbol == "Hnf4a")) 
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
unique(foo$local_gene_symbol) -> local_unique
# find max value of lrt in the full df
max(foo$lrt)+ 1 -> xmax
# separate plots for each local gene
for (i in 1:12){
  foo %>%
    filter(local_gene_symbol == local_unique[i]) %>%
    ggplot() + geom_point(aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0)), size = 1/10) + broman::karl_theme(strip.placement = "inside") + theme(legend.position="none") + ylab("LOD difference proportion") + xlab("Pleiotropy vs. separate QTL test statistic") + ylim(0, 1) + xlim(0, xmax)
  ggsave(paste0("bar_", i, ".jpg"), height = 3, width = 6, units = "in")
}
myt4 <- m2_out %>% 
  left_join(res) 
## Joining, by = c("local_gene_id", "nonlocal_gene_id")

Now, a figure with truncated lod diff proportion values.

unique(myt4$local_gene_symbol) -> local_symbols
local_symbols
##  [1] "Slpi"          "Serinc3"       "Eya2"          "Hnf4a"        
##  [5] "Ptgis"         "Stk4"          "Pkig"          "Prex1"        
##  [9] "2810408M09Rik" "Neurl2"        "Cdh22"         "Pabpc1l"      
## [13] "Gm14291"
local_symbols12 <- local_symbols[-4] # remove Hnf4a
jpeg("baseR-12.jpg", height = 720)
par(mfrow = c(4, 3), mar = c(4, 4, 1, 1))
for (i in 1:12){
  myt4_sub <- myt4 %>% 
    filter(local_gene_symbol == local_symbols12[i]) 
  plot(y = myt4_sub$lod_diff_proportion * (myt4_sub$lod_diff_proportion > 0), 
       x = myt4_sub$lrt, 
       ylab = "LOD difference proportion", 
       xlab = "Pleiotropy vs. separate QTL test statistic",
       ylim = c(0, 1),
       xlim = c(0, 73),
       cex.lab = 0.7, # reduce size of labels
       cex.axis = 0.7, # 
       mgp = c(3, 2, 1) # default is (3, 1, 0). 
       )
  title(myt4_sub$local_gene_symbol[1], adj = 0.9, line = -2)
}
dev.off()
## quartz_off_screen 
##                 2

Now, the analogous plot for Hnf4a.

jpeg("baseR-Hnf4a.jpg")
myt4_sub <- myt4 %>% 
  filter(local_gene_symbol == "Hnf4a") 
plot(y = myt4_sub$lod_diff_proportion * (myt4_sub$lod_diff_proportion > 0), 
      x = myt4_sub$lrt, 
      ylab = "LOD difference proportion", 
      xlab = "Pleiotropy vs. separate QTL test statistic",
      ylim = c(0, 1),
      xlim = c(0, 73),
)
title("Hnf4a", adj = 0.9, line = -2)
dev.off()
## quartz_off_screen 
##                 2

Note that Gpr20 has a high LRT for pleiotropy v separate QTL with Hnf4a, yet it has a small LRT when paired with Ptgis. In both cases, the proportion diff in LOD is very small.

Let’s look at the table of results that involve Gpr20

m2_out %>% 
  left_join(res) %>%
  filter(nonlocal_gene_symbol == "Gpr20") %>%
  arrange(desc(lod_diff_proportion))
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
## # A tibble: 13 x 17
##     ll_d ll_dm  ll_1 ll_1m local_gene_id nonlocal_gene_id lod_without_med
##    <dbl> <dbl> <dbl> <dbl> <chr>         <chr>                      <dbl>
##  1 -502. -501. -508. -503. ENSMUSG00000… ENSMUSG00000045…            2.83
##  2 -503. -499. -508. -502. ENSMUSG00000… ENSMUSG00000045…            2.04
##  3 -496. -496. -508. -506. ENSMUSG00000… ENSMUSG00000045…            5.14
##  4 -503. -502. -508. -506. ENSMUSG00000… ENSMUSG00000045…            2.05
##  5 -503. -502. -508. -506. ENSMUSG00000… ENSMUSG00000045…            2.05
##  6 -503. -503. -508. -508. ENSMUSG00000… ENSMUSG00000045…            2.21
##  7 -504. -504. -508. -508. ENSMUSG00000… ENSMUSG00000045…            1.96
##  8 -498. -497. -508. -507. ENSMUSG00000… ENSMUSG00000045…            4.40
##  9 -489. -489. -508. -508. ENSMUSG00000… ENSMUSG00000045…            8.36
## 10 -491. -489. -508. -507. ENSMUSG00000… ENSMUSG00000045…            7.61
## 11 -489. -488. -508. -508. ENSMUSG00000… ENSMUSG00000045…            8.36
## 12 -503. -503. -508. -508. ENSMUSG00000… ENSMUSG00000045…            2.04
## 13 -503. -497. -508. -506. ENSMUSG00000… ENSMUSG00000045…            2.37
## # … with 10 more variables: lod_with_med <dbl>, lod_diff <dbl>,
## #   lod_diff_proportion <dbl>, run_num <chr>, job_num <chr>, lrt <dbl>,
## #   nonlocal_gene_symbol <chr>, local_gene_symbol <chr>, run <chr>,
## #   job <dbl>

It looks like Gpr20 has small LOD scores for most loci examined here.

gpr20_out <- m2_out %>% 
  left_join(res) %>%
  filter(nonlocal_gene_symbol == "Gpr20") %>%
  arrange(desc(lod_without_med))
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
symbols <- dataset.islet.rnaseq$annots %>%
  as_tibble() %>%
  select(gene_id, symbol)
local2 <- local_peaks %>%
  as_tibble() %>%
  left_join(symbols, by = c("lodcolumn" = "gene_id")) %>%
  rename(local_gene_lod = lod, local_gene_id = lodcolumn)
# Get position of Gpr20's peak on chr2
Gpr20_pos <- dataset.islet.rnaseq$lod.peaks %>%
  as_tibble() %>%
  filter(chrom == 2) %>%
  filter(annot.id == symbols$gene_id[which(symbols$symbol == "Gpr20")]) %>%
  select(pos) %>% unlist()


pp <- local2 %>%
  left_join(gpr20_out) %>%
  tidyr::gather(lod_diff_proportion, lrt, key = "method", value = "test_stat") %>%
  ggplot() + geom_point(aes(x = pos, y = test_stat, colour = local_gene_symbol)) + facet_wrap(~method, ncol = 1, scales="free") + geom_vline(xintercept = Gpr20_pos)
## Joining, by = "local_gene_id"
# add vertical line for nonlocal gene's univariate QTL peak?   
ggplotly(pp, tooltip = c("colour", "x", "y"))  

How many nonlocal genes have Hnf4a as the strongest mediator?

library(xtable)
m2_out %>% 
  left_join(res) %>%
  left_join(local2) %>%
  group_by(nonlocal_gene_symbol) %>%
  filter(lod_diff == max(lod_diff)) %>%
  ungroup() %>%
  select(local_gene_symbol) %>%
  table() %>% xtable() %>% print.xtable()
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
## Joining, by = "local_gene_id"
## % latex table generated in R 3.5.2 by xtable 1.8-3 package
## % Fri Mar  1 10:53:24 2019
## \begin{table}[ht]
## \centering
## \begin{tabular}{rr}
##   \hline
##  & . \\ 
##   \hline
## 2810408M09Rik &   3 \\ 
##   Cdh22 &   4 \\ 
##   Eya2 &   4 \\ 
##   Gm14291 &   5 \\ 
##   Hnf4a &  89 \\ 
##   Neurl2 &  15 \\ 
##   Pabpc1l &   4 \\ 
##   Pkig &   2 \\ 
##   Prex1 &   5 \\ 
##   Ptgis &   3 \\ 
##   Serinc3 &   7 \\ 
##   Slpi &   1 \\ 
##   Stk4 &   5 \\ 
##    \hline
## \end{tabular}
## \end{table}

Per-nonlocal gene analyses

Here, our goal is to create 147 individual plots. Each plot will have two panes, stacked vertically. The top pane is for chromosome position (of local gene’s middle, x axis) and y axis is pleiotropy v separate QTL test statistic. The bottom pane is for chromosome position (of local gene’s middle) and, on the y axis, LOD difference proportion.

# first, join in the peak positions from hotspot_peaks
hot_peaks2 <- hotspot_peaks %>%
  filter(chr == 2)
## for use with geom_blank()
blank_data <- tibble(group = c("lrt", "lrt", "lod_diff_proportion", "lod_diff_proportion"), x = c(163, 168, 163, 168), y = c(0, 
    NA, 0, 1))
# i found this blog post for using geom_blank: https://chrischizinski.github.io/rstats/using_geom_blank/


unique(myt4$nonlocal_gene_symbol) -> nonlocal_symbols
## plots
for (i in (1:147)){
  myt4 %>%
    filter(nonlocal_gene_symbol == nonlocal_symbols[i]) %>%
    left_join(dataset.islet.rnaseq$annots, by = c("local_gene_id" = "gene_id")) %>%
    left_join(hot_peaks2, by = c("nonlocal_gene_id" = "lodcolumn")) %>%
    gather(stat, value, lrt, lod_diff_proportion) %>%
    mutate(val2 = value * (value > 0)) %>%
    ggplot() + geom_point(aes(x = middle, y = val2)) + geom_blank(data = blank_data, aes(x = x, y = y)) + geom_vline(aes(xintercept = pos)) + broman::karl_theme() + theme(legend.position="none") + ylab("Statistic") + xlab("Chromosome 2 position") + facet_wrap(nrow = 2, facets = vars(stat), shrink = FALSE, scales = "free")
  fn <- paste0("nonlocal_", i, "_chr2position")
  ggsave(paste0(fn, ".jpg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".svg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".eps"), height = 7, width = 7, units = "in")
}

Separate plots instead of 2-panel plots

for (i in (1:147)){
  foo <- myt4 %>%
    filter(nonlocal_gene_symbol == nonlocal_symbols[i]) %>%
    left_join(dataset.islet.rnaseq$annots, by = c("local_gene_id" = "gene_id")) %>%
    left_join(hot_peaks2, by = c("nonlocal_gene_id" = "lodcolumn")) %>%     
    mutate(hnf4a_indic = (local_gene_symbol == "Hnf4a"))

  # LOD diff proportion plots
  foo %>% 
    ggplot() + geom_point(aes(x = middle, y = (lod_diff_proportion > 0) * lod_diff_proportion, color = hnf4a_indic)) + geom_vline(aes(xintercept = pos)) + broman::karl_theme() + theme(legend.position="none") + ylab("LOD difference proportion") + xlab("Chromosome 2 position") + ylim(c(0, 1))
  fn <- paste0("1-panel-LOD-diff-nonlocal_", i, "_chr2position")
  ggsave(paste0(fn, ".jpg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".svg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".eps"), height = 7, width = 7, units = "in")
  # pleio LRT plots
  foo %>% 
    ggplot() + geom_point(aes(x = middle, y = lrt, color = hnf4a_indic)) + geom_vline(aes(xintercept = pos)) + broman::karl_theme() + theme(legend.position="none") + ylab("Pleiotropy v separate QTL test statistic") + xlab("Chromosome 2 position") + ylim(c(0, NA))
  fn <- paste0("1-panel-LRT-nonlocal_", i, "_chr2position")
  ggsave(paste0(fn, ".jpg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".svg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".eps"), height = 7, width = 7, units = "in")
}

Scatter plots, without chromosome position data

Here, we’ll create per-nonlocal gene scatter plots, but without consideration of the chromosome position. That is, it’s just a scatter plot of LOD difference proportion against pleiotropy vs. separate QTL test statistic.

for (i in (1:147)){
  foo <- myt4 %>%
    filter(nonlocal_gene_symbol == nonlocal_symbols[i]) %>%
    left_join(dataset.islet.rnaseq$annots, by = c("local_gene_id" = "gene_id")) %>%
    left_join(hot_peaks2, by = c("nonlocal_gene_id" = "lodcolumn")) %>%     
    mutate(hnf4a_indic = (local_gene_symbol == "Hnf4a"))

  # scatter plots
  foo %>% 
    ggplot() + geom_point(aes(x = lrt, y = (lod_diff_proportion > 0) * lod_diff_proportion, color = !hnf4a_indic)) + broman::karl_theme() + theme(legend.position="none") + ylab("LOD difference proportion") + xlab("Pleiotropy vs. separate QTL test statistic") + ylim(c(0, 1)) + xlim(0, 73) + ggtitle(nonlocal_symbols[i]) + theme(plot.title = element_text(hjust = 0.5, vjust = - 10))
  fn <- paste0("nonlocal-scatter_", i)
  ggsave(paste0(fn, ".jpg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".svg"), height = 7, width = 7, units = "in")
  ggsave(paste0(fn, ".eps"), height = 7, width = 7, units = "in")
}
# find examples for thesis images
# first, get the symbols for those with large Hnf4a test statistics
myt4 %>%
  filter(local_gene_symbol == "Hnf4a") %>%
  select(lrt) %>% 
  mutate(lrt_big_indic = lrt > 5) %>% 
  select(lrt_big_indic) %>%
  unlist() %>%
  sum()
## [1] 14

We see that 14 nonlocal genes, when paired with Hnf4a, have a pleiotropy v separate QTL test statistic above 5.

Now, let’s get the 14 nonlocal gene symbols.

nonlocal_big_lrt <- myt4 %>%
  filter(local_gene_symbol == "Hnf4a") %>%
  filter(lrt > 5) %>%
  select(nonlocal_gene_symbol) %>%
  unlist() 

Counts per local gene of strongest mediator

myt4 %>%
  filter(local_gene_symbol == "Hnf4a") %>%
  mutate(lod_med_indic = lod_diff > 1.5) %>%
  select(lod_med_indic) %>% unlist() %>% table()
## .
## FALSE  TRUE 
##    59    88

We see that 88 of 147 genes meet the criteria for mediation by Hnf4a. This is the same count that Keller et al report in their GENETICS 2018 article. I haven’t yet established whether the 88 gene ids are the same as those that Keller identified.

xtables for 3A

We want to make two latex tables for use in the 3A manuscript. One for annotating the local genes, one for the nonlocal genes.

library(xtable)
local_annot <- local_peaks %>%
  left_join(dataset.islet.rnaseq$annots, by = c("lodcolumn" = "gene_id")) %>%
  select(lodcolumn, chr.y, pos, symbol, start, end) %>%
  rename(ensembl_id = lodcolumn, chromosome = chr.y, LOD_peak_position = pos) %>%
  select(symbol, ensembl_id, chromosome, start, end, LOD_peak_position) %>%
  arrange(LOD_peak_position) %>%
  left_join(dataset.islet.rnaseq$lod.peaks, by = c("ensembl_id"= "annot.id")) %>%
  filter(chrom == 2) %>%
  select(- pos, - marker.id, - chrom) %>%
  rename(LOD_peak_height = lod)
print.xtable(xtable(local_annot), include.rownames = FALSE)
## % latex table generated in R 3.5.2 by xtable 1.8-3 package
## % Fri Mar  1 10:54:50 2019
## \begin{table}[ht]
## \centering
## \begin{tabular}{lllrrrr}
##   \hline
## symbol & ensembl\_id & chromosome & start & end & LOD\_peak\_position & LOD\_peak\_height \\ 
##   \hline
## Pkig & ENSMUSG00000035268 & 2 & 163.66 & 163.73 & 163.52 & 51.68 \\ 
##   Serinc3 & ENSMUSG00000017707 & 2 & 163.62 & 163.65 & 163.58 & 126.93 \\ 
##   Hnf4a & ENSMUSG00000017950 & 2 & 163.51 & 163.57 & 164.02 & 48.98 \\ 
##   Stk4 & ENSMUSG00000018209 & 2 & 164.07 & 164.16 & 164.03 & 60.39 \\ 
##   Pabpc1l & ENSMUSG00000054582 & 2 & 164.03 & 164.05 & 164.03 & 52.50 \\ 
##   Slpi & ENSMUSG00000017002 & 2 & 164.35 & 164.39 & 164.61 & 40.50 \\ 
##   Neurl2 & ENSMUSG00000039873 & 2 & 164.83 & 164.83 & 164.64 & 64.58 \\ 
##   Cdh22 & ENSMUSG00000053166 & 2 & 165.11 & 165.23 & 165.05 & 53.84 \\ 
##   2810408M09Rik & ENSMUSG00000039725 & 2 & 165.49 & 165.49 & 165.57 & 67.34 \\ 
##   Eya2 & ENSMUSG00000017897 & 2 & 165.60 & 165.77 & 165.72 & 98.89 \\ 
##   Prex1 & ENSMUSG00000039621 & 2 & 166.57 & 166.71 & 166.75 & 46.91 \\ 
##   Ptgis & ENSMUSG00000017969 & 2 & 167.19 & 167.24 & 167.27 & 56.25 \\ 
##   Gm14291 & ENSMUSG00000086098 & 2 & 167.20 & 167.20 & 167.27 & 73.72 \\ 
##    \hline
## \end{tabular}
## \end{table}
local_annot2 <- local_annot %>%
  select(- ensembl_id, - chromosome)
print.xtable(xtable(local_annot2), include.rownames = FALSE)
## % latex table generated in R 3.5.2 by xtable 1.8-3 package
## % Fri Mar  1 10:54:50 2019
## \begin{table}[ht]
## \centering
## \begin{tabular}{lrrrr}
##   \hline
## symbol & start & end & LOD\_peak\_position & LOD\_peak\_height \\ 
##   \hline
## Pkig & 163.66 & 163.73 & 163.52 & 51.68 \\ 
##   Serinc3 & 163.62 & 163.65 & 163.58 & 126.93 \\ 
##   Hnf4a & 163.51 & 163.57 & 164.02 & 48.98 \\ 
##   Stk4 & 164.07 & 164.16 & 164.03 & 60.39 \\ 
##   Pabpc1l & 164.03 & 164.05 & 164.03 & 52.50 \\ 
##   Slpi & 164.35 & 164.39 & 164.61 & 40.50 \\ 
##   Neurl2 & 164.83 & 164.83 & 164.64 & 64.58 \\ 
##   Cdh22 & 165.11 & 165.23 & 165.05 & 53.84 \\ 
##   2810408M09Rik & 165.49 & 165.49 & 165.57 & 67.34 \\ 
##   Eya2 & 165.60 & 165.77 & 165.72 & 98.89 \\ 
##   Prex1 & 166.57 & 166.71 & 166.75 & 46.91 \\ 
##   Ptgis & 167.19 & 167.24 & 167.27 & 56.25 \\ 
##   Gm14291 & 167.20 & 167.20 & 167.27 & 73.72 \\ 
##    \hline
## \end{tabular}
## \end{table}

Table for nonlocal gene annotations

hot_peaks2 %>%
  select(- lodindex, - chr) %>%
  rename(gene_id = lodcolumn, position = pos, LOD = lod) %>%
  left_join(dataset.islet.rnaseq$annots, by = "gene_id") %>%
  select(symbol, position, LOD) %>%
  arrange(position) %>%
  xtable() %>%
  print.xtable(include.rownames = FALSE, tabular.environment = "longtable")
## Warning in print.xtable(., include.rownames = FALSE, tabular.environment =
## "longtable"): Attempt to use "longtable" with floating = TRUE. Changing to
## FALSE.
## % latex table generated in R 3.5.2 by xtable 1.8-3 package
## % Fri Mar  1 10:54:50 2019
## \begin{longtable}{lrr}
##   \hline
## symbol & position & LOD \\ 
##   \hline
## Mtfp1 & 163.52 & 17.79 \\ 
##   Slc12a7 & 163.58 & 8.30 \\ 
##   Gpa33 & 163.58 & 26.38 \\ 
##   Tmem25 & 163.58 & 11.26 \\ 
##   Klhl29 & 163.58 & 11.03 \\ 
##   Slc9a3r1 & 163.58 & 8.40 \\ 
##   Kif1c & 163.58 & 11.12 \\ 
##   Gata4 & 163.58 & 8.72 \\ 
##   Ppp2r5b & 163.58 & 7.80 \\ 
##   Vil1 & 163.58 & 26.48 \\ 
##   Aldh4a1 & 163.58 & 9.38 \\ 
##   Cotl1 & 163.58 & 16.25 \\ 
##   Tmprss4 & 163.58 & 18.30 \\ 
##   Fhod3 & 163.58 & 17.62 \\ 
##   Zfp750 & 163.58 & 7.83 \\ 
##   Svop & 163.58 & 10.12 \\ 
##   Abcb4 & 163.58 & 16.59 \\ 
##   Ccnjl & 163.58 & 6.70 \\ 
##   Sephs2 & 163.58 & 27.21 \\ 
##   Pcdh1 & 163.58 & 12.48 \\ 
##   Fat1 & 163.58 & 7.49 \\ 
##   Sox4 & 163.58 & 14.71 \\ 
##   Gm8206 & 163.58 & 11.33 \\ 
##   Gm8492 & 163.58 & 10.47 \\ 
##   Clcn5 & 164.02 & 10.49 \\ 
##   Slc6a8 & 164.02 & 8.35 \\ 
##   Bcmo1 & 164.02 & 47.31 \\ 
##   Arrdc4 & 164.02 & 8.75 \\ 
##   Cacnb3 & 164.02 & 47.06 \\ 
##   Sec14l2 & 164.02 & 12.00 \\ 
##   Pgrmc1 & 164.02 & 15.88 \\ 
##   Baiap2l2 & 164.02 & 20.33 \\ 
##   Recql5 & 164.02 & 33.97 \\ 
##   Cpd & 164.02 & 13.70 \\ 
##   Degs2 & 164.02 & 15.20 \\ 
##   Muc13 & 164.02 & 18.91 \\ 
##   Clic5 & 164.02 & 10.39 \\ 
##   Tff3 & 164.02 & 16.38 \\ 
##   Myo7b & 164.02 & 13.70 \\ 
##   Afg3l2 & 164.02 & 19.12 \\ 
##   Sema4g & 164.02 & 23.39 \\ 
##   Agap2 & 164.02 & 33.99 \\ 
##   Plxna2 & 164.02 & 8.61 \\ 
##   Aldob & 164.02 & 20.99 \\ 
##   Epb4.1l4b & 164.02 & 9.21 \\ 
##   Sel1l3 & 164.02 & 17.92 \\ 
##   Sult1b1 & 164.02 & 17.63 \\ 
##   Hpgds & 164.02 & 31.14 \\ 
##   Ush1c & 164.02 & 21.90 \\ 
##   Calml4 & 164.02 & 12.62 \\ 
##   Fam83b & 164.02 & 16.12 \\ 
##   Myo15b & 164.02 & 71.57 \\ 
##   Inpp5j & 164.02 & 11.57 \\ 
##   Ttyh2 & 164.02 & 15.20 \\ 
##   Cdhr2 & 164.02 & 30.00 \\ 
##   Myrf & 164.02 & 37.55 \\ 
##   Sh3bp4 & 164.02 & 9.04 \\ 
##   Vgf & 164.02 & 15.05 \\ 
##   Grtp1 & 164.02 & 23.88 \\ 
##   B4galnt3 & 164.02 & 20.43 \\ 
##   Gucy2c & 164.02 & 12.02 \\ 
##   Smim5 & 164.02 & 18.20 \\ 
##   Nrip1 & 164.02 & 9.50 \\ 
##   Clrn3 & 164.02 & 20.13 \\ 
##   Acot4 & 164.02 & 12.17 \\ 
##   Hunk & 164.02 & 18.50 \\ 
##   Zbtb16 & 164.02 & 6.69 \\ 
##   Osgin1 & 164.02 & 13.51 \\ 
##   Zfp541 & 164.02 & 25.28 \\ 
##   2610042L04Rik & 164.02 & 8.14 \\ 
##   Gm9429 & 164.02 & 9.13 \\ 
##   Agxt2 & 164.02 & 14.54 \\ 
##   Gm17147 & 164.02 & 26.94 \\ 
##   Gm8281 & 164.02 & 8.40 \\ 
##   Ddx23 & 164.03 & 9.29 \\ 
##   Map2k6 & 164.03 & 18.54 \\ 
##   Npr1 & 164.03 & 9.68 \\ 
##   Hdac6 & 164.03 & 11.28 \\ 
##   Vav3 & 164.03 & 13.51 \\ 
##   Atp11b & 164.03 & 11.77 \\ 
##   Aadat & 164.03 & 8.08 \\ 
##   Tmem19 & 164.03 & 20.60 \\ 
##   Gbp4 & 164.03 & 7.14 \\ 
##   Papola & 164.03 & 12.14 \\ 
##   Als2 & 164.03 & 18.35 \\ 
##   Sult1d1 & 164.03 & 11.23 \\ 
##   Myo6 & 164.03 & 10.27 \\ 
##   Dnajc22 & 164.03 & 13.72 \\ 
##   Unc5d & 164.03 & 6.96 \\ 
##   Gm3095 & 164.03 & 10.90 \\ 
##   Gm26886 & 164.03 & 8.76 \\ 
##   Eps8 & 164.06 & 12.49 \\ 
##   Ddc & 164.06 & 13.61 \\ 
##   Fras1 & 164.06 & 10.06 \\ 
##   Card11 & 164.06 & 7.20 \\ 
##   Glyat & 164.06 & 10.79 \\ 
##   Pipox & 164.08 & 15.90 \\ 
##   Iyd & 164.08 & 23.23 \\ 
##   Man1a & 164.26 & 8.77 \\ 
##   Cdc42ep4 & 164.26 & 8.11 \\ 
##   Ppara & 164.26 & 8.84 \\ 
##   Galr1 & 164.26 & 10.10 \\ 
##   Ctdsp1 & 164.26 & 7.13 \\ 
##   Eif2ak3 & 164.26 & 8.93 \\ 
##   Misp & 164.26 & 9.24 \\ 
##   Sun1 & 164.26 & 7.35 \\ 
##   Kctd8 & 164.26 & 9.76 \\ 
##   Dcaf12l1 & 164.26 & 8.95 \\ 
##   4930539E08Rik & 164.26 & 8.25 \\ 
##   Slc29a4 & 164.26 & 7.94 \\ 
##   Gm3239 & 164.26 & 9.21 \\ 
##   Gm3629 & 164.26 & 9.77 \\ 
##   Gm3252 & 164.26 & 9.87 \\ 
##   Gm3002 & 164.26 & 7.62 \\ 
##   Ctsh & 164.29 & 9.76 \\ 
##   Dao & 164.29 & 7.06 \\ 
##   Ak7 & 164.31 & 10.07 \\ 
##   Pcp4l1 & 164.35 & 9.11 \\ 
##   Gm12929 & 164.62 & 37.80 \\ 
##   Mgat1 & 164.63 & 10.10 \\ 
##   Atg7 & 164.76 & 7.82 \\ 
##   Gm11549 & 165.05 & 10.23 \\ 
##   Ccdc111 & 165.12 & 7.77 \\ 
##   Fam20a & 165.15 & 7.59 \\ 
##   Oscp1 & 165.16 & 7.99 \\ 
##   Dsc2 & 165.28 & 8.06 \\ 
##   Adam10 & 165.28 & 9.73 \\ 
##   Plb1 & 165.28 & 8.85 \\ 
##   Ccdc89 & 165.28 & 7.84 \\ 
##   9930013L23Rik & 165.28 & 7.93 \\ 
##   Gm13648 & 165.28 & 7.08 \\ 
##   Igfbp4 & 165.45 & 8.68 \\ 
##   Ldlrap1 & 165.45 & 7.18 \\ 
##   Cdh18 & 165.45 & 7.96 \\ 
##   Arhgef10l & 165.46 & 7.57 \\ 
##   Cib3 & 165.48 & 8.70 \\ 
##   Macf1 & 165.57 & 9.10 \\ 
##   Fam63b & 165.58 & 8.33 \\ 
##   1190002N15Rik & 165.63 & 9.02 \\ 
##   Bcl2l14 & 165.71 & 7.54 \\ 
##   Hist2h2be & 165.88 & 8.96 \\ 
##   Gm6428 & 165.89 & 7.32 \\ 
##   Dennd5b & 166.18 & 9.42 \\ 
##   Gm12168 & 166.18 & 7.77 \\ 
##   Gm12230 & 166.42 & 7.46 \\ 
##   Acat3 & 166.61 & 7.17 \\ 
##   Gpr20 & 166.84 & 8.41 \\ 
##    \hline
## \hline
## \end{longtable}

Fixing ‘strip’ for local & nonlocal gene plots

foo <- m2_out %>% 
  left_join(res) %>%
  filter(!(local_gene_symbol == "Hnf4a")) %>%
  mutate(x = 60, y = 0.8)
## Joining, by = c("local_gene_id", "nonlocal_gene_id")
unique(foo$local_gene_symbol) -> local_unique
# find max value of lrt in the full df
# separate plots for each local gene
foo %>%
  ggplot() + geom_point(aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0)), size = 1/10) + broman::karl_theme() + facet_wrap(~ local_gene_symbol, nrow = 6, ncol = 2) + theme(legend.position="none") + #theme(
#  strip.background = element_blank(),
#  strip.text.x = element_blank()
#) + 
  ylab("LOD difference proportion") +
  xlab("Pleiotropy vs. separate QTL test statistic") + 
  ylim(0, 1) + xlim(0, NA) +
  geom_text(data = foo, aes(x, y, label = local_gene_symbol), inherit.aes=FALSE)

ggsave("12local-facet_grid.eps", width = 6.5, height = 9, units = "in")
# separate plots for each local gene
foo %>%
  ggplot() + geom_point(aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0)), size = 1/10) + broman::karl_theme() + facet_wrap(~ local_gene_symbol, nrow = 6, ncol = 2) + theme(legend.position="none") + 
  theme(
    strip.background = element_blank(),
    strip.text.x = element_blank()
) + 
  ylab("LOD difference proportion") +
  xlab("Pleiotropy vs. separate QTL test statistic") + 
  ylim(0, 1) + xlim(0, NA) +
  geom_text(data = foo, aes(x, y, label = local_gene_symbol), inherit.aes=FALSE)

ggsave("12local-facet_grid-no-strip.eps", width = 6.5, height = 9, units = "in")
# https://stackoverflow.com/questions/10547487/remove-facet-wrap-labels-completely
# separate plots for each local gene
foo %>%
  ggplot() + geom_point(aes(x = lrt, y = lod_diff_proportion * (lod_diff_proportion > 0)), size = 1/10) + broman::karl_theme() + facet_wrap(~ local_gene_symbol, nrow = 3, ncol = 4) + theme(legend.position="none") + 
  theme(
    strip.background = element_blank(),
    strip.text.x = element_blank()
) + 
  ylab("LOD difference proportion") +
  xlab("Pleiotropy vs. separate QTL test statistic") + 
  ylim(0, 1) + xlim(0, NA) +
  geom_text(data = foo, aes(x, y, label = local_gene_symbol), inherit.aes=FALSE)

ggsave("12local-facet_grid-no-strip-3-by-4.svg", width = 9, height = 6, units = "in")
# https://stackoverflow.com/questions/10547487/remove-facet-wrap-labels-completely

Now, the nonlocal gene plots.

indices <- c(97, 105, 64, 141)
nonlocal_symbols[indices]
## [1] "Abcb4"   "Smim5"   "Tmprss4" "Gm3095"
levels(as.factor(nonlocal_symbols[indices]))
## [1] "Abcb4"   "Gm3095"  "Smim5"   "Tmprss4"
levs <- levels(as.factor(nonlocal_symbols[indices]))[c(1, 3, 4, 2)]
levs_logical <- c(TRUE, FALSE)
foo <- myt4 %>%
    filter(nonlocal_gene_symbol %in% nonlocal_symbols[indices]) %>%
    left_join(dataset.islet.rnaseq$annots, by = c("local_gene_id" = "gene_id")) %>%
    left_join(hot_peaks2, by = c("nonlocal_gene_id" = "lodcolumn")) %>%     
    mutate(hnf4a_indic = (local_gene_symbol == "Hnf4a"), 
           ordering_factor = factor(nonlocal_gene_symbol, levels = levs),
           hnf4a_indic_factor = factor(hnf4a_indic, levels = levs_logical), 
           x = 60, y = 0.8 # for adding geom_text
             )

  # scatter plots 

foo %>% 
  ggplot() + 
  geom_point(size = 1 + foo$hnf4a_indic, aes( 
                           x = lrt, 
                           y = (lod_diff_proportion > 0) * lod_diff_proportion, 
                           color = !as.logical(hnf4a_indic_factor))) + 
  #geom_jitter() + 
  broman::karl_theme() + 
  theme(legend.position="none") + 
  ylab("LOD difference proportion") + 
  xlab("Pleiotropy vs. separate QTL test statistic") + 
  ylim(c(0, 1)) + 
  xlim(0, 73) + 
  facet_wrap(~ ordering_factor, nrow = 2, ncol = 2) + 
  theme(
    strip.background = element_blank(),
    strip.text.x = element_blank()
) +
  geom_text(data = foo, aes(x, y, label = nonlocal_gene_symbol), inherit.aes=FALSE)

# 
fn <- "nonlocal-4-panels-no-strip"
ggsave(paste0(fn, ".svg"), height = 9, width = 6.5, units = "in")
ggsave(paste0(fn, ".eps"), height = 9, width = 6.5, units = "in")
foo %>% 
  ggplot() + 
  geom_point(size = 1 + foo$hnf4a_indic, aes( 
                           x = lrt, 
                           y = (lod_diff_proportion > 0) * lod_diff_proportion, 
                           color = !as.logical(hnf4a_indic_factor))) + 
  #geom_jitter() + 
  broman::karl_theme() + 
  theme(legend.position="none") + 
  ylab("LOD difference proportion") + 
  xlab("Pleiotropy vs. separate QTL test statistic") + 
  ylim(c(0, 1)) + 
  xlim(0, 73) + 
  facet_wrap(~ ordering_factor, nrow = 2, ncol = 2) + 
#  theme(
#    strip.background = element_blank(),
#    strip.text.x = element_blank()
#) +
  geom_text(data = foo, aes(x, y, label = nonlocal_gene_symbol), inherit.aes=FALSE)

# 
fn <- "nonlocal-4-panels"
ggsave(paste0(fn, ".svg"), height = 9, width = 6.5, units = "in")
ggsave(paste0(fn, ".eps"), height = 9, width = 6.5, units = "in")

Compare my LOD scores with those in dataset.islet.rnaseq$lod.peaks

foobar <- dataset.islet.rnaseq$lod.peaks %>% 
  left_join(dataset.islet.rnaseq$annots, by = c("annot.id" = "gene_id")) %>%
  filter(chrom == 2, pos > 163.5, pos < 167.5, lod > 7.18, chr != 2)
hot_peaks2 %>%
  filter(lodcolumn == "ENSMUSG00000003746")
##   lodindex          lodcolumn chr      pos      lod
## 1        1 ENSMUSG00000003746   2 164.2552 8.765979
foobar %>%
  filter(annot.id == "ENSMUSG00000003746")
##             annot.id   marker.id chrom      pos      lod symbol chr
## 1 ENSMUSG00000003746 2_164255184     2 164.2552 9.218257  Man1a  10
##      start     end strand   middle nearest.marker.id        biotype module
## 1 53.90479 54.0758     -1 53.99029       10_53983416 protein_coding   grey
##   hotspot
## 1    chr5

Session info

devtools::session_info()
## ─ Session info ──────────────────────────────────────────────────────────
##  setting  value                                      
##  version  R version 3.5.2 Patched (2018-12-24 r75893)
##  os       macOS Mojave 10.14.3                       
##  system   x86_64, darwin15.6.0                       
##  ui       X11                                        
##  language (EN)                                       
##  collate  en_US.UTF-8                                
##  ctype    en_US.UTF-8                                
##  tz       America/Chicago                            
##  date     2019-03-01                                 
## 
## ─ Packages ──────────────────────────────────────────────────────────────
##  package      * version    date       lib
##  assertthat     0.2.0      2017-04-11 [1]
##  backports      1.1.3      2018-12-14 [1]
##  bindr          0.1.1      2018-03-13 [1]
##  bindrcpp     * 0.2.2      2018-03-29 [1]
##  bit            1.1-14     2018-05-29 [1]
##  bit64          0.9-7      2017-05-08 [1]
##  blob           1.1.1      2018-03-25 [1]
##  broman         0.68-2     2018-07-25 [1]
##  broom          0.5.1      2018-12-05 [1]
##  callr          3.1.1      2018-12-21 [1]
##  cellranger     1.1.0      2016-07-27 [1]
##  cli            1.0.1      2018-09-25 [1]
##  colorspace     1.4-0      2019-01-13 [1]
##  crayon         1.3.4      2017-09-16 [1]
##  crosstalk      1.0.0      2016-12-21 [1]
##  data.table     1.12.0     2019-01-13 [1]
##  DBI            1.0.0      2018-05-02 [1]
##  desc           1.2.0      2018-05-01 [1]
##  devtools       2.0.1      2018-10-26 [1]
##  digest         0.6.18     2018-10-10 [1]
##  dplyr        * 0.7.8      2018-11-10 [1]
##  evaluate       0.12       2018-10-09 [1]
##  fansi          0.4.0      2018-10-05 [1]
##  forcats      * 0.3.0      2018-02-19 [1]
##  fs             1.2.6      2018-08-23 [1]
##  gdtools      * 0.1.7      2018-02-27 [1]
##  generics       0.0.2      2018-11-29 [1]
##  ggplot2      * 3.1.0      2018-10-25 [1]
##  glue           1.3.0      2018-07-17 [1]
##  gtable         0.2.0      2016-02-26 [1]
##  haven          2.0.0      2018-11-22 [1]
##  hms            0.4.2      2018-03-10 [1]
##  htmltools      0.3.6      2017-04-28 [1]
##  htmlwidgets    1.3        2018-09-30 [1]
##  httpuv         1.4.5.1    2018-12-18 [1]
##  httr           1.4.0      2018-12-11 [1]
##  intermediate * 0.5-1      2018-12-31 [1]
##  jsonlite       1.6        2018-12-07 [1]
##  knitr          1.21       2018-12-10 [1]
##  labeling       0.3        2014-08-23 [1]
##  later          0.7.5      2018-09-18 [1]
##  lattice        0.20-38    2018-11-04 [1]
##  lazyeval       0.2.1      2017-10-29 [1]
##  lubridate      1.7.4      2018-04-11 [1]
##  magrittr       1.5        2014-11-22 [1]
##  memoise        1.1.0      2017-04-21 [1]
##  mime           0.6        2018-10-05 [1]
##  modelr         0.1.3      2019-02-05 [1]
##  munsell        0.5.0      2018-06-12 [1]
##  nlme           3.1-137    2018-04-07 [1]
##  pillar         1.3.1      2018-12-15 [1]
##  pkgbuild       1.0.2      2018-10-16 [1]
##  pkgconfig      2.0.2      2018-08-16 [1]
##  pkgload        1.0.2      2018-10-29 [1]
##  plotly       * 4.8.0      2018-07-20 [1]
##  plyr           1.8.4      2016-06-08 [1]
##  prettyunits    1.0.2      2015-07-13 [1]
##  processx       3.2.1      2018-12-05 [1]
##  promises       1.0.1      2018-04-13 [1]
##  ps             1.3.0      2018-12-21 [1]
##  purrr        * 0.3.0      2019-01-27 [1]
##  qtl2         * 0.17-9     2018-12-25 [1]
##  qtl2chtc     * 0.1.0      2018-12-31 [1]
##  qtl2pleio      0.1.2.9000 2018-12-31 [1]
##  R6             2.3.0      2018-10-04 [1]
##  RColorBrewer   1.1-2      2014-12-07 [1]
##  Rcpp           1.0.0.1    2018-12-28 [1]
##  readr        * 1.3.1      2018-12-21 [1]
##  readxl         1.2.0      2018-12-19 [1]
##  remotes        2.0.2      2018-10-30 [1]
##  rlang          0.3.1      2019-01-08 [1]
##  rmarkdown      1.11       2018-12-08 [1]
##  rprojroot      1.3-2      2018-01-03 [1]
##  RSQLite        2.1.1      2018-05-06 [1]
##  rstudioapi     0.9.0      2019-01-09 [1]
##  rvest          0.3.2      2016-06-17 [1]
##  scales         1.0.0      2018-08-09 [1]
##  sessioninfo    1.1.1      2018-11-05 [1]
##  shiny          1.2.0      2018-11-02 [1]
##  stringi        1.2.4      2018-07-20 [1]
##  stringr      * 1.3.1      2018-05-10 [1]
##  svglite        1.2.1      2017-09-11 [1]
##  testthat       2.0.1      2018-10-13 [1]
##  tibble       * 2.0.1      2019-01-12 [1]
##  tidyr        * 0.8.2      2018-10-28 [1]
##  tidyselect     0.2.5      2018-10-11 [1]
##  tidyverse    * 1.2.1      2017-11-14 [1]
##  usethis        1.4.0      2018-08-14 [1]
##  utf8           1.1.4      2018-05-24 [1]
##  viridisLite    0.3.0      2018-02-01 [1]
##  withr          2.1.2      2018-03-15 [1]
##  xfun           0.4        2018-10-23 [1]
##  xml2           1.2.0      2018-01-24 [1]
##  xtable       * 1.8-3      2018-08-29 [1]
##  yaml           2.2.0      2018-07-25 [1]
##  source                           
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  local                            
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  Github (rqtl/qtl2@1c007a2)       
##  Github (fboehm/qtl2chtc@38631fa) 
##  Github (fboehm/qtl2pleio@be41d66)
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  Github (RcppCore/Rcpp@0c9f683)   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.2)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
##  CRAN (R 3.5.0)                   
## 
## [1] /Library/Frameworks/R.framework/Versions/3.5/Resources/library